home *** CD-ROM | disk | FTP | other *** search
- unit Unit1;
-
- interface
- { Your code }
-
- implementation
- { more code }
-
- procedure MyInitProc;
- begin
- end;
-
- procedure MyCleanupProc;
- begin
- end;
-
- initialization
- {Any amount of code can go here, but
- calling a procedure looks neater, eg :}
- MyInitProc;
- finalization
- {Any amount of code can go here too, but
- calling a procedure looks neater, eg :}
- MyCleanupProc;
- end.
- x